Function QName
private static final StructuredQName qName defines the following:
-
XSLT function prefix,
-
namespace URI, and
-
function name.
Saxon uses this identity when XSLT invokes the function.
private static final StructuredQName qName = new StructuredQName( "helper", "com.adminserver.webservice.helper.XsltFunctionHelper", "getNextGUID"); |
getFunctionQName()
getFunctionQName() returns the QName that is defined for the function.
@Override public StructuredQName getFunctionQName() {return qName; } |